#include #include #include void czekaj(int czas) { int t = clock(); t += czas; while( clock() < t ){} } int main() { int a=11, b=9, c=6; if(a>b) { if(a>c) { printf("Najwieksze jest A"); czekaj(2000); } else { printf("Najwieksze jest C"); czekaj(2000); } } else { if(b>c) { printf("Najwieksze jest B"); czekaj(2000); } else { printf("Najwieksze jest C"); czekaj(2000); } } return 0; }